home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / Programming / Blitz2 / BlitzFaq / FaqLists / Textlenght.txt < prev    next >
Encoding:
Text File  |  1996-09-05  |  302 b   |  12 lines

  1. Screen 0,3
  2. Window 0,0,0,320,256,0,"Example",-1,-1
  3.  
  4. rp.l=RastPort(0)                     ;the rastport of the used window
  5. a$="Blitz Forever"                   ;the string to examine
  6. pixlen.w=TextLength_(rp,&a$,Len(a$)) ;Easy!!!!!!!!!!!!!!!!! :)
  7.  
  8. NPrint a$
  9. NPrint "Is ",pixlen," pixels long."
  10.  
  11. MouseWait
  12.